/* Contact Section */
.contact.section {
    padding: 4rem 2rem;
    background-color: #f3f4f6;
  }
  
  /* Section Header */
  .section__header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section__title {
    font-size: 2.5rem;
    color: #4c1d95;
    font-weight: 700;
  }
  
  .section__subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-top: 0.5rem;
  }
  
  .section__divider {
    width: 60px;
    height: 4px;
    background-color: #7c3aed;
    margin: 1rem auto 0;
    border-radius: 2px;
  }
  
  /* Contact Container Grid */
  .contact__container.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: flex-start;
  }
  
  /* Contact Info Cards */
  .contact__card {
    background-color: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.8rem;
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.1);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(124, 58, 237, 0.2);
  }
  
  .contact__icon i {
    font-size: 1.8rem;
    color: #7c3aed;
    background: #ede9fe;
    padding: 0.7rem;
    border-radius: 12px;
  }
  
  .contact__details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4c1d95;
    margin-bottom: 0.2rem;
  }
  
  .contact__details p {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0.4rem;
  }
  
  .contact__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #7c3aed;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .contact__link i {
    margin-left: 0.4rem;
    transition: transform 0.3s ease;
  }
  
  .contact__link:hover i {
    transform: translateX(4px);
  }
  
  .contact__link:hover {
    color: #4c1d95;
  }
  
  /* Contact Form */
  .contact__form {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.1);
  }
  
  .form__group {
    margin-bottom: 1.5rem;
  }
  
  .form__field {
    position: relative;
  }
  
  .form__input {
    width: 100%;
    padding: 1rem 0.8rem;
    font-size: 1rem;
    border: none;
    border-bottom: 2px solid #d1d5db;
    outline: none;
    transition: border-color 0.3s ease;
    background: transparent;
  }
  
  .form__input:focus {
    border-color: #7c3aed;
  }
  
  .form__label {
    position: absolute;
    top: 1rem;
    left: 0.8rem;
    font-size: 1rem;
    color: #6b7280;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .form__input:focus + .form__label,
  .form__input:not(:placeholder-shown) + .form__label {
    transform: translateY(-1.2rem);
    font-size: 0.8rem;
    color: #7c3aed;
  }
  
  .form__line {
    display: block;
    height: 2px;
    background: #7c3aed;
    width: 0;
    transition: width 0.3s ease;
  }
  
  .form__input:focus ~ .form__line {
    width: 100%;
  }
  
  .form__textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  /* Submit Button */
  .btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #7c3aed;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .btn--primary:hover {
    background-color: #4c1d95;
    transform: translateY(-2px);
  }
  
  /* Form Message */
  .form__message {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #10b981;
    font-weight: 500;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact__container.grid {
      grid-template-columns: 1fr;
    }
  
    .contact__form {
      padding: 1.5rem;
    }
  }
  